From 33c4b1044d00866e9b6d9362048fb194e76afb77 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Fri, 30 Mar 2012 08:52:19 +0100 Subject: [PATCH] Remove single use of fastcall from hypervisor common code. Signed-off-by: Keir Fraser --- xen/common/rcupdate.c | 4 ++-- xen/include/xen/rcupdate.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/xen/common/rcupdate.c b/xen/common/rcupdate.c index 158e2d554b..e9979cd9d0 100644 --- a/xen/common/rcupdate.c +++ b/xen/common/rcupdate.c @@ -175,8 +175,8 @@ static void force_quiescent_state(struct rcu_data *rdp, * sections are delimited by rcu_read_lock() and rcu_read_unlock(), * and may be nested. */ -void fastcall call_rcu(struct rcu_head *head, - void (*func)(struct rcu_head *rcu)) +void call_rcu(struct rcu_head *head, + void (*func)(struct rcu_head *rcu)) { unsigned long flags; struct rcu_data *rdp; diff --git a/xen/include/xen/rcupdate.h b/xen/include/xen/rcupdate.h index 8e5555f9b2..91ded98641 100644 --- a/xen/include/xen/rcupdate.h +++ b/xen/include/xen/rcupdate.h @@ -142,8 +142,8 @@ void rcu_init(void); void rcu_check_callbacks(int cpu); /* Exported interfaces */ -void fastcall call_rcu(struct rcu_head *head, - void (*func)(struct rcu_head *head)); +void call_rcu(struct rcu_head *head, + void (*func)(struct rcu_head *head)); int rcu_barrier(void); -- 2.30.2